home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / etc / cron.daily / dpkg < prev    next >
Encoding:
Text File  |  2012-09-19  |  256 b   |  11 lines

  1. #!/bin/sh
  2.  
  3. # Backup the 7 last versions of dpkg's status file
  4. if cd /var/backups ; then
  5.     if ! cmp -s dpkg.status.0 /var/lib/dpkg/status ; then
  6.             cp -p /var/lib/dpkg/status dpkg.status
  7.             savelog -c 7 dpkg.status >/dev/null
  8.     fi
  9. fi
  10.  
  11.